home *** CD-ROM | disk | FTP | other *** search
- #***********************************************************
- #
- # LOGIN SCRIPT for DELTA INTERNET SERVICES
- # (Mar. 16, 1995)
- #
- #-----------------------------------------------------------
- # retrieve strings from ini file to establish connection
- #
- load $modemsetup
- load $number
- load $username
- load $userpwd
- load $protocol
- #
- #-----------------------------------------------------------
- # reset the modem; send the modem intialization string;
- # dial Delta
- #
- output "atz"\13
- input 60 OK\n
- #
- #output "at"$modemsetup\13
- #input 60 OK\n
- #
- output "atdt"$number\13
- #input 60 \n
- #
- #------------------------------------------------------------
- # wait for the username prompt > enter username
- #
- input 120 "login"
- output $username\13
- #
- #------------------------------------------------------------
- # wait for password prompt > enter password
- #
- input 120 "word:"
- output $userpwd\13
- #
- #------------------------------------------------------------
- # wait for user's IP address > set as user's IP
- #
- # If Your Account Uses a Dynamic IP Address, Remove the '#'
- # In Front of the Two Commands Immediately Below.
- #
- #input 120 "IPADDRESS:"
- #address 120
- #
- #------------------------------------------------------------
- # wait until PPP or SLIP dialog is started
- #
- input 120 $protocol
- #
- #------------------------------------------------------------
- # you are now connected directly to the Internet!
- #
- end
-
-